X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/74c155708d85abfc2cf227c08de4f27003015b3f..3de51c6f55d304f038df1b77c8ab346e2a187fe1:/Super%20Polarity/Actors/Ship.cs diff --git a/Super Polarity/Actors/Ship.cs b/Super Polarity/Actors/Ship.cs index 2839c97..229f639 100644 --- a/Super Polarity/Actors/Ship.cs +++ b/Super Polarity/Actors/Ship.cs @@ -14,10 +14,10 @@ namespace SuperPolarity public Polarity CurrentPolarity; public uint MagneticRadius; - protected float FleeVelocity; - protected float ActVelocity; - protected float ChargeVelocity; - protected int RepelRadius; + public float FleeVelocity; + public float ActVelocity; + public float ChargeVelocity; + public int RepelRadius; protected bool Magnetizing; @@ -25,11 +25,11 @@ namespace SuperPolarity MagneticRadius = 250; RepelRadius = 100; - HP = 5; + HP = 2; FleeVelocity = 5; - ActVelocity = 2; - ChargeVelocity = 1.5f; + ActVelocity = 1; + ChargeVelocity = 2.5f; CurrentPolarity = Polarity.Neutral; Magnetizing = false; }